home *** CD-ROM | disk | FTP | other *** search
- #ifndef EGS_EGB_GBTEXTINFO_H
- #define EGS_EGB_GBTEXTINFO_H
-
- /***************************************************************************\
- *
- * $
- * $ FILE : gbtextinfo.h
- * $ VERSION : 1
- * $ REVISION : 2
- * $ DATE : 07-Feb-93 19:53
- * $
- * $ Author : mvk
- * $
- *
- *****************************************************************************
- * *
- * (c) Copyright 1990/93 VIONA Development *
- * All Rights Reserved *
- * *
- \***************************************************************************/
-
- #ifndef EXEC_TYPES_H
- #include <exec/types.h>
- #endif
- #ifndef EGS_EGSINTUI_H
- #include <egs/egsintui.h>
- #endif
- #ifndef EGS_EGSGADBOX_H
- #include <egs/egsgadbox.h>
- #endif
-
- typedef struct EGB_TextInfoGadgetStruct *EGB_TextInfoGadPtr;
-
- struct EGB_TextInfoGadgetStruct {
- struct EI_MasterGadget Master;
- EI_PropGadPtr Prop;
- char *Text;
- UWORD *LineDisp;
- WORD Lines;
- WORD CHeight;
- struct EB_ResBox Res;
- WORD X,Y,W;
- WORD Pad;
- EG_EFontPtr Font;
- EB_GadContext Con;
- };
-
- typedef struct EGB_TextInfoGadgetStruct EGB_TextInfoGadget;
-
-
- #endif /* EGS_EGB_GBTEXTINFO_H */
-
-